Skip to content

Bump redhat-services-prod/openshift/boilerplate from image-v8.3.2 to image-v8.3.4 in /build#426

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/docker/build/redhat-services-prod/openshift/boilerplate-image-v8.3.4
Open

Bump redhat-services-prod/openshift/boilerplate from image-v8.3.2 to image-v8.3.4 in /build#426
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/docker/build/redhat-services-prod/openshift/boilerplate-image-v8.3.4

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 3, 2026

Bumps redhat-services-prod/openshift/boilerplate from image-v8.3.2 to image-v8.3.4.

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Summary by CodeRabbit

  • Chores
    • Updated base image to a newer version.

Bumps redhat-services-prod/openshift/boilerplate from image-v8.3.2 to image-v8.3.4.

---
updated-dependencies:
- dependency-name: redhat-services-prod/openshift/boilerplate
  dependency-version: image-v8.3.4
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added area/dependency Issues or PRs related to dependency changes ok-to-test Indicates a non-member PR verified by an org member that is safe to test. labels Mar 3, 2026
@coderabbitai
Copy link

coderabbitai bot commented Mar 3, 2026

Walkthrough

The builder stage base image in the Dockerfile is updated from image-v8.3.2 to image-v8.3.4. No functional changes to build steps or runtime configuration are introduced.

Changes

Cohort / File(s) Summary
Docker Base Image Update
build/Dockerfile
Builder stage base image version bump from v8.3.2 to v8.3.4.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and specifically summarizes the main change: bumping a Docker base image from version 8.3.2 to 8.3.4 in the /build directory, which matches the file-level summary showing only a base image version update.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Stable And Deterministic Test Names ✅ Passed All test names in the repository are static, descriptive strings with no dynamic values. No pod names, timestamps, UUIDs, node names, or IP addresses are present in Ginkgo test titles.
Test Structure And Quality ✅ Passed Pull request only modifies Docker base image version in build/Dockerfile with no changes to test code.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch dependabot/docker/build/redhat-services-prod/openshift/boilerplate-image-v8.3.4

Comment @coderabbitai help to get the list of available commands and usage tips.

@openshift-ci
Copy link
Contributor

openshift-ci bot commented Mar 3, 2026

Hi @dependabot[bot]. Thanks for your PR.

I'm waiting for a openshift member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@openshift-ci
Copy link
Contributor

openshift-ci bot commented Mar 3, 2026

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: dependabot[bot]
Once this PR has been reviewed and has the lgtm label, please assign rogbas for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (1)
build/Dockerfile (1)

1-1: Pin the builder image by digest to ensure deterministic builds.

Using only :image-v8.3.4 allows the tag to be repointed, breaking build reproducibility. Keep the tag for readability but add the immutable digest pinning.

Suggested change
-FROM quay.io/redhat-services-prod/openshift/boilerplate:image-v8.3.4 AS builder
+FROM quay.io/redhat-services-prod/openshift/boilerplate:image-v8.3.4@sha256:3e6c2d2fb0d680b17188ee2c68b5b3a097fe47877a5bb976209526e6c9cc0f91 AS builder
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@build/Dockerfile` at line 1, Replace the floating tag in the Dockerfile's
FROM line with an immutable reference by adding the image digest while keeping
the tag for readability; locate the existing FROM statement "FROM
quay.io/redhat-services-prod/openshift/boilerplate:image-v8.3.4" and change it
to include "@sha256:<digest>" (so it reads like
"quay.io/.../boilerplate:image-v8.3.4@sha256:<digest>"). Obtain the correct
sha256 digest from the registry (e.g., via `skopeo inspect`, `podman image
inspect --raw`, or the Quay UI) and verify the digest matches the tag before
committing.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In `@build/Dockerfile`:
- Line 1: Replace the floating tag in the Dockerfile's FROM line with an
immutable reference by adding the image digest while keeping the tag for
readability; locate the existing FROM statement "FROM
quay.io/redhat-services-prod/openshift/boilerplate:image-v8.3.4" and change it
to include "@sha256:<digest>" (so it reads like
"quay.io/.../boilerplate:image-v8.3.4@sha256:<digest>"). Obtain the correct
sha256 digest from the registry (e.g., via `skopeo inspect`, `podman image
inspect --raw`, or the Quay UI) and verify the digest matches the tag before
committing.

ℹ️ Review info

Configuration used: Repository: openshift/coderabbit/.coderabbit.yaml

Review profile: CHILL

Plan: Pro

Cache: Disabled due to data retention organization setting

Knowledge base: Disabled due to data retention organization setting

📥 Commits

Reviewing files that changed from the base of the PR and between 4b2fc9d and 914c205.

📒 Files selected for processing (1)
  • build/Dockerfile

@openshift-ci
Copy link
Contributor

openshift-ci bot commented Mar 3, 2026

@dependabot[bot]: The following test failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/prow/validate 914c205 link true /test validate

Full PR test history. Your PR dashboard.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

@codecov
Copy link

codecov bot commented Mar 3, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 57.15%. Comparing base (4b2fc9d) to head (914c205).

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #426   +/-   ##
=======================================
  Coverage   57.15%   57.15%           
=======================================
  Files          29       29           
  Lines        2138     2138           
=======================================
  Hits         1222     1222           
  Misses        802      802           
  Partials      114      114           
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/dependency Issues or PRs related to dependency changes ok-to-test Indicates a non-member PR verified by an org member that is safe to test.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants